home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / managers / ILayoutManager.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  714 b   |  25 lines

  1. package mx.managers
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface ILayoutManager extends IEventDispatcher
  6.    {
  7.       function validateNow() : void;
  8.       
  9.       function validateClient(param1:ILayoutManagerClient, param2:Boolean = false) : void;
  10.       
  11.       function isInvalid() : Boolean;
  12.       
  13.       function invalidateDisplayList(param1:ILayoutManagerClient) : void;
  14.       
  15.       function set usePhasedInstantiation(param1:Boolean) : void;
  16.       
  17.       function invalidateSize(param1:ILayoutManagerClient) : void;
  18.       
  19.       function get usePhasedInstantiation() : Boolean;
  20.       
  21.       function invalidateProperties(param1:ILayoutManagerClient) : void;
  22.    }
  23. }
  24.  
  25.